home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / src.arc / ARP.H < prev    next >
C/C++ Source or Header  |  1989-08-18  |  4KB  |  107 lines

  1. #ifndef    ARPSIZE
  2.  
  3. #include "global.h"
  4. #include "timer.h"
  5.  
  6. /* Size of ARP hash table */
  7. #define    ARPSIZE    17
  8.  
  9. /* Lifetime of a valid ARP entry */
  10. #define    ARPLIFE        900    /* 15 minutes */
  11. /* Lifetime of a pending ARP entry */
  12. #define    PENDTIME    15    /* 15 seconds */
  13.  
  14. /* ARP definitions (see RFC 826) */
  15.  
  16. /* Address size definitions */
  17. #define    IPALEN    4        /* Length in bytes of an IP address */
  18. #define    MAXHWALEN    255    /* Maximum length of a hardware address */
  19.  
  20. /* ARP opcodes */
  21. #define    ARP_REQUEST    1
  22. #define    ARP_REPLY    2
  23.  
  24. /* Hardware types */
  25. #define    ARP_NETROM    0    /* Fake for NET/ROM (never actually sent) */
  26. #define    ARP_ETHER    1    /* Assigned to 10 megabit Ethernet */
  27. #define    ARP_EETHER    2    /* Assigned to experimental Ethernet */
  28. #define    ARP_AX25    3    /* Assigned to AX.25 Level 2 */
  29. #define    ARP_PRONET    4    /* Assigned to PROnet token ring */
  30. #define    ARP_CHAOS    5    /* Assigned to Chaosnet */
  31. #define    ARP_ARCNET    7
  32. #define    ARP_APPLETALK    8
  33. extern char *Arptypes[];    /* Type fields in ASCII, defined in arpcmd */
  34. #define    NHWTYPES 9
  35.  
  36. /* Table of hardware types known to ARP */
  37. struct arp_type {
  38.     int16 hwalen;        /* Hardware length */
  39.     int16 iptype;        /* Hardware type field for IP */
  40.     int16 arptype;        /* Hardware type field for ARP */
  41.     int16 pendtime;        /* # secs to wait pending response */
  42.     char *bdcst;        /* Hardware broadcast address */
  43.     int (*format) __ARGS((char *,char *));
  44.                 /* Function that formats addresses */
  45.     int (*scan) __ARGS((char *,char *));
  46.                 /* Reverse of format */
  47. };
  48. extern struct arp_type Arp_type[];
  49. #define    NULLATYPE    (struct arp_type *)0
  50.  
  51. /* Format of an ARP request or reply packet. From p. 3 */
  52. struct arp {
  53.     int16 hardware;            /* Hardware type */
  54.     int16 protocol;            /* Protocol type */
  55.     char hwalen;            /* Hardware address length, bytes */
  56.     char pralen;            /* Length of protocol address */
  57.     int16 opcode;            /* ARP opcode (request/reply) */
  58.     char shwaddr[MAXHWALEN];    /* Sender hardware address field */
  59.     int32 sprotaddr;        /* Sender Protocol address field */
  60.     char thwaddr[MAXHWALEN];    /* Target hardware address field */
  61.     int32 tprotaddr;        /* Target protocol address field */
  62. };
  63.         
  64. /* Format of ARP table */
  65. struct arp_tab {
  66.     struct arp_tab *next;    /* Doubly-linked list pointers */
  67.     struct arp_tab *prev;    
  68.     struct timer timer;    /* Time until aging this entry */
  69.     struct mbuf *pending;    /* Queue of datagrams awaiting resolution */
  70.     int32 ip_addr;        /* IP Address, host order */
  71.     int16 hardware;        /* Hardware type */
  72.     char *hw_addr;        /* Hardware address */
  73.     char state;        /* (In)complete */
  74. #define    ARP_PENDING    0
  75. #define    ARP_VALID    1
  76.     char pub;        /* Respond to requests for this entry? */
  77. };
  78. #define    NULLARP    (struct arp_tab *)0
  79. extern struct arp_tab *Arp_tab[];
  80.  
  81. struct arp_stat {
  82.     unsigned recv;        /* Total number of ARP packets received */
  83.     unsigned badtype;    /* Incoming requests for unsupported hardware */
  84.     unsigned badlen;    /* Incoming length field(s) didn't match types */
  85.     unsigned badaddr;    /* Bogus incoming addresses */
  86.     unsigned inreq;        /* Incoming requests for us */
  87.     unsigned replies;    /* Replies sent */
  88.     unsigned outreq;    /* Outoging requests sent */
  89. };
  90. extern struct arp_stat Arp_stat;
  91.  
  92. /* In arp.c: */
  93. struct arp_tab *arp_add __ARGS((int32 ipaddr,int16 hardware,char *hw_addr,
  94.     int16 hw_alen,int pub));
  95. void arp_drop __ARGS((void *p));
  96. int arp_init __ARGS((unsigned int hwtype,int hwalen,int iptype,int arptype,
  97.     int pendtime,char *bdcst,int  (*format) __ARGS((char *,char *)),
  98.     int  (*scan) __ARGS((char *,char *)) ));
  99. void arp_input __ARGS((struct iface *iface,struct mbuf *bp));
  100. struct arp_tab *arp_lookup __ARGS((int16 hardware,int32 ipaddr));
  101. struct mbuf *htonarp __ARGS((struct arp *arp));
  102. int ntoharp __ARGS((struct arp *arp,struct mbuf **bpp));
  103. char *res_arp __ARGS((struct iface *iface,int16 hardware,int32 target,struct mbuf *bp));
  104.  
  105. #endif /* ARPSIZE */
  106.  
  107.